box: Don't special-case RTL hbox child positions anymore
authorBenjamin Otte <otte@redhat.com>
Tue, 18 Dec 2012 17:12:26 +0000 (18:12 +0100)
committerBenjamin Otte <otte@redhat.com>
Tue, 18 Dec 2012 17:25:42 +0000 (18:25 +0100)
commit6f86e57c4fb2cd76549910302b3a7145e7fd0e8b
tree4424746324a9e489d41eda0e13bf4dbd40caaaa3
parent52768ee6ec9729f3ab0c201cab2f06942421e290
box: Don't special-case RTL hbox child positions anymore

If you want to get rounded corners on an hbox, instead of
  :first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  :last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
you now need to write:
  :first-child, :last-child:dir(rtl) {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  :last-child, :first-child:dir(rtl) {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
gtk/gtkbox.c